home *** CD-ROM | disk | FTP | other *** search
/ mail.altrad.com / 2015.02.mail.altrad.com.tar / mail.altrad.com / TEST / office deutch / INFOPATH.NL-NL / INFLR.CAB / FL_System_Data_SqlClient_xml_103421_ENU____.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Extensible Markup Language  |  2005-09-23  |  85KB  |  955 lines

  1. ∩╗┐<?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3.     <assembly>
  4.         <name>System.Data.SqlClient</name>
  5.     </assembly>
  6.     <members>
  7.         <member name="N:System.Data.SqlClient">
  8.             <summary>The <see cref="N:System.Data.SqlClient"></see> namespace is the.NET Framework Data Provider for SQL Server.</summary>
  9.         </member>
  10.         <member name="T:System.Data.SqlClient.SqlCommand">
  11.             <summary>Represents a Transact-SQL statement or stored procedure to execute against a SQL Server database. This class cannot be inherited.</summary>
  12.         </member>
  13.         <member name="M:System.Data.SqlClient.SqlCommand.#ctor">
  14.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class.</summary>
  15.         </member>
  16.         <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String)">
  17.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query.</summary>
  18.             <param name="cmdText">The text of the query. </param>
  19.         </member>
  20.         <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection)">
  21.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query and a <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
  22.             <param name="cmdText">The text of the query. </param>
  23.             <param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection to an instance of SQL Server. </param>
  24.         </member>
  25.         <member name="M:System.Data.SqlClient.SqlCommand.#ctor(System.String,System.Data.SqlClient.SqlConnection,System.Data.SqlClient.SqlTransaction)">
  26.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see> class with the text of the query, a <see cref="T:System.Data.SqlClient.SqlConnection"></see>, and the <see cref="T:System.Data.SqlClient.SqlTransaction"></see>.</summary>
  27.             <param name="cmdText">The text of the query. </param>
  28.             <param name="connection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection to an instance of SQL Server. </param>
  29.             <param name="transaction">The <see cref="T:System.Data.SqlClient.SqlTransaction"></see> in which the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executes. </param>
  30.         </member>
  31.         <member name="M:System.Data.SqlClient.SqlCommand.Cancel">
  32.             <summary>Tries to cancel the execution of a <see cref="T:System.Data.SqlClient.SqlCommand"></see>.</summary>
  33.         </member>
  34.         <member name="M:System.Data.SqlClient.SqlCommand.CreateParameter">
  35.             <summary>Creates a new instance of a <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</summary>
  36.             <returns>A <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  37.         </member>
  38.         <member name="M:System.Data.SqlClient.SqlCommand.ExecuteNonQuery">
  39.             <summary>Executes a Transact-SQL statement against the connection and returns the number of rows affected.</summary>
  40.             <returns>The number of rows affected.</returns>
  41.             <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0. </exception>
  42.         </member>
  43.         <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReader">
  44.             <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.</summary>
  45.             <returns>A <see cref="T:System.Data.SqlClient.SqlDataReader"></see> object.</returns>
  46.             <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0. </exception>
  47.             <exception cref="T:System.Exception">The command could not be executed. </exception>
  48.         </member>
  49.         <member name="M:System.Data.SqlClient.SqlCommand.ExecuteReader(System.Data.CommandBehavior)">
  50.             <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see>, and builds a <see cref="T:System.Data.SqlClient.SqlDataReader"></see> using one of the <see cref="T:System.Data.CommandBehavior"></see> values.</summary>
  51.             <returns>A <see cref="T:System.Data.SqlClient.SqlDataReader"></see> object.</returns>
  52.             <param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"></see> values. </param>
  53.         </member>
  54.         <member name="M:System.Data.SqlClient.SqlCommand.ExecuteScalar">
  55.             <summary>Executes the query, and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.</summary>
  56.             <returns>The first column of the first row in the result set, or a null reference if the result set is empty.</returns>
  57.             <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0. </exception>
  58.         </member>
  59.         <member name="M:System.Data.SqlClient.SqlCommand.ExecuteXmlReader">
  60.             <summary>Sends the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> to the <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> and builds an <see cref="T:System.Xml.XmlReader"></see> object.</summary>
  61.             <returns>An <see cref="T:System.Xml.XmlReader"></see> object.</returns>
  62.             <exception cref="T:System.Data.SqlClient.SqlException">An exception occurred while executing the command against a locked row. This exception is not generated when you are using Microsoft .NET Framework version 1.0. </exception>
  63.         </member>
  64.         <member name="M:System.Data.SqlClient.SqlCommand.Prepare">
  65.             <summary>Creates a prepared version of the command on an instance of SQL Server.</summary>
  66.             <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> is not set.-or- The <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> is not <see cref="M:System.Data.SqlClient.SqlConnection.Open"></see>. </exception>
  67.         </member>
  68.         <member name="M:System.Data.SqlClient.SqlCommand.ResetCommandTimeout">
  69.             <summary>Resets the <see cref="P:System.Data.SqlClient.SqlCommand.CommandTimeout"></see> property to its default value.</summary>
  70.         </member>
  71.         <member name="P:System.Data.SqlClient.SqlCommand.CommandText">
  72.             <summary>Gets or sets the Transact-SQL statement or stored procedure to execute at the data source.</summary>
  73.             <returns>The Transact-SQL statement or stored procedure to execute. The default is an empty string.</returns>
  74.         </member>
  75.         <member name="P:System.Data.SqlClient.SqlCommand.CommandTimeout">
  76.             <summary>Gets or sets the wait time before terminating the attempt to execute a command and generating an error.</summary>
  77.             <returns>The time in seconds to wait for the command to execute. The default is 30 seconds.</returns>
  78.         </member>
  79.         <member name="P:System.Data.SqlClient.SqlCommand.CommandType">
  80.             <summary>Gets or sets a value indicating how the <see cref="P:System.Data.SqlClient.SqlCommand.CommandText"></see> property is to be interpreted.</summary>
  81.             <returns>One of the <see cref="T:System.Data.CommandType"></see> values. The default is Text.</returns>
  82.             <exception cref="T:System.ArgumentException">The value was not a valid <see cref="T:System.Data.CommandType"></see>. </exception>
  83.         </member>
  84.         <member name="P:System.Data.SqlClient.SqlCommand.Connection">
  85.             <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlConnection"></see> used by this instance of the <see cref="T:System.Data.SqlClient.SqlCommand"></see>.</summary>
  86.             <returns>The connection to a data source. The default value is null.</returns>
  87.             <exception cref="T:System.InvalidOperationException">The <see cref="P:System.Data.SqlClient.SqlCommand.Connection"></see> property was changed while a transaction was in progress. </exception>
  88.         </member>
  89.         <member name="P:System.Data.SqlClient.SqlCommand.Parameters">
  90.             <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  91.             <returns>The parameters of the Transact-SQL statement or stored procedure. The default is an empty collection.</returns>
  92.         </member>
  93.         <member name="P:System.Data.SqlClient.SqlCommand.Transaction">
  94.             <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlTransaction"></see> within which the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executes.</summary>
  95.             <returns>The <see cref="T:System.Data.SqlClient.SqlTransaction"></see>. The default value is null.</returns>
  96.         </member>
  97.         <member name="P:System.Data.SqlClient.SqlCommand.UpdatedRowSource">
  98.             <summary>Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow"></see> when used by the Update method of the <see cref="T:System.Data.Common.DbDataAdapter"></see>.</summary>
  99.             <returns>One of the <see cref="T:System.Data.UpdateRowSource"></see> values.</returns>
  100.         </member>
  101.         <member name="T:System.Data.SqlClient.SqlCommandBuilder">
  102.             <summary>Automatically generates single-table commands that are used to reconcile changes made to a <see cref="T:System.Data.DataSet"></see> with the associated SQL Server database. This class cannot be inherited. </summary>
  103.         </member>
  104.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.#ctor">
  105.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder"></see> class.</summary>
  106.         </member>
  107.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.#ctor(System.Data.SqlClient.SqlDataAdapter)">
  108.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlCommandBuilder"></see> class with the associated <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> object.</summary>
  109.             <param name="adapter">The name of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>. </param>
  110.         </member>
  111.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.DeriveParameters(System.Data.SqlClient.SqlCommand)">
  112.             <summary>Retrieves parameter information from the stored procedure specified in the <see cref="T:System.Data.SqlClient.SqlCommand"></see> and populates the <see cref="P:System.Data.SqlClient.SqlCommand.Parameters"></see> collection of the specified <see cref="T:System.Data.SqlClient.SqlCommand"></see> object.</summary>
  113.             <param name="command">The <see cref="T:System.Data.SqlClient.SqlCommand"></see> referencing the stored procedure from which the parameter information is to be derived. The derived parameters are added to the <see cref="P:System.Data.SqlClient.SqlCommand.Parameters"></see> collection of the <see cref="T:System.Data.SqlClient.SqlCommand"></see>. </param>
  114.             <exception cref="T:System.InvalidOperationException">The command text is not a valid stored procedure name. </exception>
  115.         </member>
  116.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.GetDeleteCommand">
  117.             <summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object required to perform deletions on the database.</summary>
  118.             <returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object required to perform deletions.</returns>
  119.         </member>
  120.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.GetInsertCommand">
  121.             <summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object required to perform insertions on the database.</summary>
  122.             <returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object required to perform insertions.</returns>
  123.         </member>
  124.         <member name="M:System.Data.SqlClient.SqlCommandBuilder.GetUpdateCommand">
  125.             <summary>Gets the automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object required to perform updates on the database.</summary>
  126.             <returns>The automatically generated <see cref="T:System.Data.SqlClient.SqlCommand"></see> object that is required to perform updates.</returns>
  127.         </member>
  128.         <member name="P:System.Data.SqlClient.SqlCommandBuilder.DataAdapter">
  129.             <summary>Gets or sets a <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> object for which Transact-SQL statements are automatically generated.</summary>
  130.             <returns>A <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> object.</returns>
  131.         </member>
  132.         <member name="P:System.Data.SqlClient.SqlCommandBuilder.QuotePrefix">
  133.             <summary>Gets or sets the starting character or characters to use when specifying SQL Server database objects, such as tables or columns, whose names contain characters such as spaces or reserved tokens.</summary>
  134.             <returns>The starting character or characters to use. The default is an empty string.</returns>
  135.             <exception cref="T:System.InvalidOperationException">This property cannot be changed after an INSERT, UPDATE, or DELETE command has been generated. </exception>
  136.         </member>
  137.         <member name="P:System.Data.SqlClient.SqlCommandBuilder.QuoteSuffix">
  138.             <summary>Gets or sets the ending character or characters to use when specifying SQL Server database objects, such as tables or columns, whose names contain characters such as spaces or reserved tokens.</summary>
  139.             <returns>The ending character or characters to use. The default is an empty string.</returns>
  140.             <exception cref="T:System.InvalidOperationException">This property cannot be changed after an insert, update, or delete command has been generated. </exception>
  141.         </member>
  142.         <member name="T:System.Data.SqlClient.SqlConnection">
  143.             <summary>Represents an open connection to a SQL Server database. This class cannot be inherited. </summary>
  144.         </member>
  145.         <member name="M:System.Data.SqlClient.SqlConnection.#ctor">
  146.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnection"></see> class.</summary>
  147.         </member>
  148.         <member name="M:System.Data.SqlClient.SqlConnection.#ctor(System.String)">
  149.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlConnection"></see> class when given a string that contains the connection string.</summary>
  150.             <param name="connectionString">The connection used to open the SQL Server database. </param>
  151.         </member>
  152.         <member name="E:System.Data.SqlClient.SqlConnection.InfoMessage">
  153.             <summary>Occurs when SQL Server returns a warning or informational message.</summary>
  154.         </member>
  155.         <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction">
  156.             <summary>Starts a database transaction.</summary>
  157.             <returns>An object representing the new transaction.</returns>
  158.             <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
  159.         </member>
  160.         <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.Data.IsolationLevel)">
  161.             <summary>Starts a database transaction with the specified isolation level.</summary>
  162.             <returns>An object representing the new transaction.</returns>
  163.             <param name="iso">The isolation level under which the transaction should run. </param>
  164.             <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
  165.         </member>
  166.         <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.String)">
  167.             <summary>Starts a database transaction with the specified transaction name.</summary>
  168.             <returns>An object representing the new transaction.</returns>
  169.             <param name="transactionName">The name of the transaction. </param>
  170.             <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
  171.         </member>
  172.         <member name="M:System.Data.SqlClient.SqlConnection.BeginTransaction(System.Data.IsolationLevel,System.String)">
  173.             <summary>Starts a database transaction with the specified isolation level and transaction name.</summary>
  174.             <returns>An object representing the new transaction.</returns>
  175.             <param name="iso">The isolation level under which the transaction should run. </param>
  176.             <param name="transactionName">The name of the transaction. </param>
  177.             <exception cref="T:System.InvalidOperationException">Parallel transactions are not supported. </exception>
  178.         </member>
  179.         <member name="M:System.Data.SqlClient.SqlConnection.ChangeDatabase(System.String)">
  180.             <summary>Changes the current database for an open <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
  181.             <param name="database">The name of the database to use instead of the current database. </param>
  182.             <exception cref="T:System.Data.SqlClient.SqlException">Cannot change the database. </exception>
  183.             <exception cref="T:System.InvalidOperationException">The connection is not open. </exception>
  184.             <exception cref="T:System.ArgumentException">The database name is not valid. </exception>
  185.         </member>
  186.         <member name="M:System.Data.SqlClient.SqlConnection.Close">
  187.             <summary>Closes the connection to the database. This is the preferred method of closing any open connection.</summary>
  188.             <exception cref="T:System.Data.SqlClient.SqlException">The connection-level error that occurred while opening the connection. </exception>
  189.         </member>
  190.         <member name="M:System.Data.SqlClient.SqlConnection.CreateCommand">
  191.             <summary>Creates and returns a <see cref="T:System.Data.SqlClient.SqlCommand"></see> object associated with the <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
  192.             <returns>A <see cref="T:System.Data.SqlClient.SqlCommand"></see> object.</returns>
  193.         </member>
  194.         <member name="M:System.Data.SqlClient.SqlConnection.Open">
  195.             <summary>Opens a database connection with the property settings specified by the <see cref="P:System.Data.SqlClient.SqlConnection.ConnectionString"></see>.</summary>
  196.             <exception cref="T:System.InvalidOperationException">Cannot open a connection without specifying a data source or server.or The connection is already open. </exception>
  197.             <exception cref="T:System.Data.SqlClient.SqlException">A connection-level error occurred while opening the connection. If the <see cref="P:System.Data.SqlClient.SqlException.Number"></see> property contains the value 18487 or 18488, this indicates that the specified password has expired or must be reset. See the <see cref="M:System.Data.SqlClient.SqlConnection.ChangePassword(System.String,System.String)"></see> method for more information.</exception>
  198.         </member>
  199.         <member name="M:System.Data.SqlClient.SqlConnection.System.ICloneable.Clone">
  200.             <summary>Creates a new object that is a copy of the current instance.</summary>
  201.             <returns>A new object that is a copy of this instance.</returns>
  202.         </member>
  203.         <member name="P:System.Data.SqlClient.SqlConnection.ConnectionString">
  204.             <summary>Gets or sets the string used to open a SQL Server database.</summary>
  205.             <returns>The connection string that includes the source database name, and other parameters needed to establish the initial connection. The default value is an empty string.</returns>
  206.             <exception cref="T:System.ArgumentException">An invalid connection string argument has been supplied, or a required connection string argument has not been supplied. </exception>
  207.         </member>
  208.         <member name="P:System.Data.SqlClient.SqlConnection.ConnectionTimeout">
  209.             <summary>Gets the time to wait while trying to establish a connection before terminating the attempt and generating an error.</summary>
  210.             <returns>The time (in seconds) to wait for a connection to open. The default value is 15 seconds.</returns>
  211.             <exception cref="T:System.ArgumentException">The value set is less than 0. </exception>
  212.         </member>
  213.         <member name="P:System.Data.SqlClient.SqlConnection.Database">
  214.             <summary>Gets the name of the current database or the database to be used after a connection is opened.</summary>
  215.             <returns>The name of the current database or the name of the database to be used after a connection is opened. The default value is an empty string.</returns>
  216.         </member>
  217.         <member name="P:System.Data.SqlClient.SqlConnection.DataSource">
  218.             <summary>Gets the name of the instance of SQL Server to which to connect.</summary>
  219.             <returns>The name of the instance of SQL Server to which to connect. The default value is an empty string.</returns>
  220.         </member>
  221.         <member name="P:System.Data.SqlClient.SqlConnection.PacketSize">
  222.             <summary>Gets the size (in bytes) of network packets used to communicate with an instance of SQL Server.</summary>
  223.             <returns>The size (in bytes) of network packets. The default value is 8192.</returns>
  224.         </member>
  225.         <member name="P:System.Data.SqlClient.SqlConnection.ServerVersion">
  226.             <summary>Gets a string that contains the version of the instance of SQL Server to which the client is connected.</summary>
  227.             <returns>The version of the instance of SQL Server.</returns>
  228.             <exception cref="T:System.InvalidOperationException">The connection is closed. </exception>
  229.         </member>
  230.         <member name="P:System.Data.SqlClient.SqlConnection.State">
  231.             <summary>Indicates the state of the <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
  232.             <returns>An <see cref="T:System.Data.ConnectionState"></see> enumeration.</returns>
  233.         </member>
  234.         <member name="P:System.Data.SqlClient.SqlConnection.WorkstationId">
  235.             <summary>Gets a string that identifies the database client.</summary>
  236.             <returns>A string that identifies the database client. If not specified, the name of the client computer. If neither is specified, the value is an empty string.</returns>
  237.         </member>
  238.         <member name="T:System.Data.SqlClient.SqlDataAdapter">
  239.             <summary>Represents a set of data commands and a database connection that are used to fill the <see cref="T:System.Data.DataSet"></see> and update a SQL Server database. This class cannot be inherited.</summary>
  240.         </member>
  241.         <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor">
  242.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class.</summary>
  243.         </member>
  244.         <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.Data.SqlClient.SqlCommand)">
  245.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with the specified <see cref="T:System.Data.SqlClient.SqlCommand"></see> as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property.</summary>
  246.             <param name="selectCommand">A <see cref="T:System.Data.SqlClient.SqlCommand"></see> that is a Transact-SQL SELECT statement or stored procedure and is set as the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>. </param>
  247.         </member>
  248.         <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.Data.SqlClient.SqlConnection)">
  249.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> and a <see cref="T:System.Data.SqlClient.SqlConnection"></see> object.</summary>
  250.             <param name="selectCommandText">A <see cref="T:System.String"></see> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>. </param>
  251.             <param name="selectConnection">A <see cref="T:System.Data.SqlClient.SqlConnection"></see> that represents the connection. </param>
  252.         </member>
  253.         <member name="M:System.Data.SqlClient.SqlDataAdapter.#ctor(System.String,System.String)">
  254.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see> class with a <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> and a connection string.</summary>
  255.             <param name="selectCommandText">A <see cref="T:System.String"></see> that is a Transact-SQL SELECT statement or stored procedure to be used by the <see cref="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand"></see> property of the <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>. </param>
  256.             <param name="selectConnectionString">The connection string. </param>
  257.         </member>
  258.         <member name="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated">
  259.             <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> after a command is executed against the data source. The attempt to update is made, so the event fires.</summary>
  260.         </member>
  261.         <member name="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating">
  262.             <summary>Occurs during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> before a command is executed against the data source. The attempt to update is made, so the event fires.</summary>
  263.         </member>
  264.         <member name="P:System.Data.SqlClient.SqlDataAdapter.DeleteCommand">
  265.             <summary>Gets or sets a Transact-SQL statement or stored procedure to delete records from the data set.</summary>
  266.             <returns>A <see cref="T:System.Data.SqlClient.SqlCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to delete records in the database that correspond to deleted rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
  267.         </member>
  268.         <member name="P:System.Data.SqlClient.SqlDataAdapter.InsertCommand">
  269.             <summary>Gets or sets a Transact-SQL statement or stored procedure to insert new records into the data source.</summary>
  270.             <returns>A <see cref="T:System.Data.SqlClient.SqlCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to insert records into the database that correspond to new rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
  271.         </member>
  272.         <member name="P:System.Data.SqlClient.SqlDataAdapter.SelectCommand">
  273.             <summary>Gets or sets a Transact-SQL statement or stored procedure used to select records in the data source.</summary>
  274.             <returns>A <see cref="T:System.Data.SqlClient.SqlCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Fill(System.Data.DataSet)"></see> to select records from the database for placement in the <see cref="T:System.Data.DataSet"></see>.</returns>
  275.         </member>
  276.         <member name="P:System.Data.SqlClient.SqlDataAdapter.System.Data.IDbDataAdapter.DeleteCommand">
  277.             <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.DeleteCommand"></see>.</summary>
  278.         </member>
  279.         <member name="P:System.Data.SqlClient.SqlDataAdapter.System.Data.IDbDataAdapter.InsertCommand">
  280.             <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.InsertCommand"></see>.</summary>
  281.         </member>
  282.         <member name="P:System.Data.SqlClient.SqlDataAdapter.System.Data.IDbDataAdapter.SelectCommand">
  283.             <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.SelectCommand"></see>.</summary>
  284.         </member>
  285.         <member name="P:System.Data.SqlClient.SqlDataAdapter.System.Data.IDbDataAdapter.UpdateCommand">
  286.             <summary>For a description of this member, see <see cref="P:System.Data.IDbDataAdapter.UpdateCommand"></see>.</summary>
  287.         </member>
  288.         <member name="P:System.Data.SqlClient.SqlDataAdapter.UpdateCommand">
  289.             <summary>Gets or sets a Transact-SQL statement or stored procedure used to update records in the data source.</summary>
  290.             <returns>A <see cref="T:System.Data.SqlClient.SqlCommand"></see> used during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> to update records in the database that correspond to modified rows in the <see cref="T:System.Data.DataSet"></see>.</returns>
  291.         </member>
  292.         <member name="T:System.Data.SqlClient.SqlDataReader">
  293.             <summary>Provides a way of reading a forward-only stream of rows from a SQL Server database. This class cannot be inherited.</summary>
  294.         </member>
  295.         <member name="M:System.Data.SqlClient.SqlDataReader.Close">
  296.             <summary>Closes the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> object.</summary>
  297.         </member>
  298.         <member name="M:System.Data.SqlClient.SqlDataReader.GetBoolean(System.Int32)">
  299.             <summary>Gets the value of the specified column as a Boolean.</summary>
  300.             <returns>The value of the column.</returns>
  301.             <param name="i">The zero-based column ordinal. </param>
  302.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  303.         </member>
  304.         <member name="M:System.Data.SqlClient.SqlDataReader.GetByte(System.Int32)">
  305.             <summary>Gets the value of the specified column as a byte.</summary>
  306.             <returns>The value of the specified column as a byte.</returns>
  307.             <param name="i">The zero-based column ordinal. </param>
  308.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  309.         </member>
  310.         <member name="M:System.Data.SqlClient.SqlDataReader.GetBytes(System.Int32,System.Int64,System.Byte[],System.Int32,System.Int32)">
  311.             <summary>Reads a stream of bytes from the specified column offset into the buffer an array starting at the given buffer offset.</summary>
  312.             <returns>The actual number of bytes read.</returns>
  313.             <param name="buffer">The buffer into which to read the stream of bytes. </param>
  314.             <param name="dataIndex">The index within the field from which to begin the read operation.</param>
  315.             <param name="i">The zero-based column ordinal. </param>
  316.             <param name="bufferIndex">The index for buffer to begin the write operation. </param>
  317.             <param name="length">The maximum length to copy into the buffer. </param>
  318.         </member>
  319.         <member name="M:System.Data.SqlClient.SqlDataReader.GetChar(System.Int32)">
  320.             <summary>Gets the value of the specified column as a single character.</summary>
  321.             <returns>The value of the specified column.</returns>
  322.             <param name="i">The zero-based column ordinal. </param>
  323.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  324.         </member>
  325.         <member name="M:System.Data.SqlClient.SqlDataReader.GetChars(System.Int32,System.Int64,System.Char[],System.Int32,System.Int32)">
  326.             <summary>Reads a stream of characters from the specified column offset into the buffer as an array starting at the given buffer offset.</summary>
  327.             <returns>The actual number of characters read.</returns>
  328.             <param name="buffer">The buffer into which to read the stream of bytes. </param>
  329.             <param name="dataIndex">The index within the field from which to begin the read operation.</param>
  330.             <param name="i">The zero-based column ordinal. </param>
  331.             <param name="bufferIndex">The index for buffer to begin the write operation. </param>
  332.             <param name="length">The maximum length to copy into the buffer. </param>
  333.         </member>
  334.         <member name="M:System.Data.SqlClient.SqlDataReader.GetDataTypeName(System.Int32)">
  335.             <summary>Gets the name of the source data type.</summary>
  336.             <returns>The name of the back-end data type.</returns>
  337.             <param name="i">The zero-based column ordinal. </param>
  338.         </member>
  339.         <member name="M:System.Data.SqlClient.SqlDataReader.GetDateTime(System.Int32)">
  340.             <summary>Gets the value of the specified column as a <see cref="T:System.DateTime"></see> object.</summary>
  341.             <returns>The value of the specified column.</returns>
  342.             <param name="i">The zero-based column ordinal. </param>
  343.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  344.         </member>
  345.         <member name="M:System.Data.SqlClient.SqlDataReader.GetDecimal(System.Int32)">
  346.             <summary>Gets the value of the specified column as a <see cref="T:System.Decimal"></see> object.</summary>
  347.             <returns>The value of the specified column.</returns>
  348.             <param name="i">The zero-based column ordinal. </param>
  349.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  350.         </member>
  351.         <member name="M:System.Data.SqlClient.SqlDataReader.GetDouble(System.Int32)">
  352.             <summary>Gets the value of the specified column as a double-precision floating point number.</summary>
  353.             <returns>The value of the specified column.</returns>
  354.             <param name="i">The zero-based column ordinal. </param>
  355.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  356.         </member>
  357.         <member name="M:System.Data.SqlClient.SqlDataReader.GetFieldType(System.Int32)">
  358.             <summary>Gets the <see cref="T:System.Type"></see> that is the data type of the object.</summary>
  359.             <returns>The <see cref="T:System.Type"></see> that is the data type of the object. If the type does not exist on the client, in the case of a User-Defined Type (UDT) returned from the database, GetFieldType returns null.</returns>
  360.             <param name="i">The zero-based column ordinal. </param>
  361.         </member>
  362.         <member name="M:System.Data.SqlClient.SqlDataReader.GetFloat(System.Int32)">
  363.             <summary>Gets the value of the specified column as a single-precision floating point number.</summary>
  364.             <returns>The value of the specified column.</returns>
  365.             <param name="i">The zero-based column ordinal. </param>
  366.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  367.         </member>
  368.         <member name="M:System.Data.SqlClient.SqlDataReader.GetGuid(System.Int32)">
  369.             <summary>Gets the value of the specified column as a globally unique identifier (GUID).</summary>
  370.             <returns>The value of the specified column.</returns>
  371.             <param name="i">The zero-based column ordinal. </param>
  372.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  373.         </member>
  374.         <member name="M:System.Data.SqlClient.SqlDataReader.GetInt16(System.Int32)">
  375.             <summary>Gets the value of the specified column as a 16-bit signed integer.</summary>
  376.             <returns>The value of the specified column.</returns>
  377.             <param name="i">The zero-based column ordinal. </param>
  378.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  379.         </member>
  380.         <member name="M:System.Data.SqlClient.SqlDataReader.GetInt32(System.Int32)">
  381.             <summary>Gets the value of the specified column as a 32-bit signed integer.</summary>
  382.             <returns>The value of the specified column.</returns>
  383.             <param name="i">The zero-based column ordinal. </param>
  384.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  385.         </member>
  386.         <member name="M:System.Data.SqlClient.SqlDataReader.GetInt64(System.Int32)">
  387.             <summary>Gets the value of the specified column as a 64-bit signed integer.</summary>
  388.             <returns>The value of the specified column.</returns>
  389.             <param name="i">The zero-based column ordinal. </param>
  390.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  391.         </member>
  392.         <member name="M:System.Data.SqlClient.SqlDataReader.GetName(System.Int32)">
  393.             <summary>Gets the name of the specified column.</summary>
  394.             <returns>The name of the specified column.</returns>
  395.             <param name="i">The zero-based column ordinal. </param>
  396.         </member>
  397.         <member name="M:System.Data.SqlClient.SqlDataReader.GetOrdinal(System.String)">
  398.             <summary>Gets the column ordinal, given the name of the column.</summary>
  399.             <returns>The zero-based column ordinal.</returns>
  400.             <param name="name">The name of the column. </param>
  401.             <exception cref="T:System.IndexOutOfRangeException">The name specified is not a valid column name. </exception>
  402.         </member>
  403.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSchemaTable">
  404.             <summary>Returns a <see cref="T:System.Data.DataTable"></see> that describes the column metadata of the <see cref="T:System.Data.SqlClient.SqlDataReader"></see>.</summary>
  405.             <returns>A <see cref="T:System.Data.DataTable"></see> that describes the column metadata.</returns>
  406.             <exception cref="T:System.InvalidOperationException">The <see cref="T:System.Data.SqlClient.SqlDataReader"></see> is closed. </exception>
  407.         </member>
  408.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlBinary(System.Int32)">
  409.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</summary>
  410.             <returns>A <see cref="T:System.Data.SqlTypes.SqlBinary"></see>.</returns>
  411.             <param name="i">The zero-based column ordinal. </param>
  412.         </member>
  413.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlBoolean(System.Int32)">
  414.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlBoolean"></see>.</summary>
  415.             <returns>The value of the column.</returns>
  416.             <param name="i">The zero-based column ordinal. </param>
  417.         </member>
  418.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlByte(System.Int32)">
  419.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</summary>
  420.             <returns>A <see cref="T:System.Data.SqlTypes.SqlByte"></see>.</returns>
  421.             <param name="i">The zero-based column ordinal. </param>
  422.         </member>
  423.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDateTime(System.Int32)">
  424.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</summary>
  425.             <returns>A <see cref="T:System.Data.SqlTypes.SqlDateTime"></see>.</returns>
  426.             <param name="i">The zero-based column ordinal. </param>
  427.         </member>
  428.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDecimal(System.Int32)">
  429.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</summary>
  430.             <returns>A <see cref="T:System.Data.SqlTypes.SqlDecimal"></see>.</returns>
  431.             <param name="i">The zero-based column ordinal. </param>
  432.         </member>
  433.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlDouble(System.Int32)">
  434.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</summary>
  435.             <returns>A <see cref="T:System.Data.SqlTypes.SqlDouble"></see>.</returns>
  436.             <param name="i">The zero-based column ordinal. </param>
  437.         </member>
  438.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlGuid(System.Int32)">
  439.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</summary>
  440.             <returns>A <see cref="T:System.Data.SqlTypes.SqlGuid"></see>.</returns>
  441.             <param name="i">The zero-based column ordinal. </param>
  442.         </member>
  443.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt16(System.Int32)">
  444.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</summary>
  445.             <returns>A <see cref="T:System.Data.SqlTypes.SqlInt16"></see>.</returns>
  446.             <param name="i">The zero-based column ordinal. </param>
  447.         </member>
  448.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt32(System.Int32)">
  449.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</summary>
  450.             <returns>A <see cref="T:System.Data.SqlTypes.SqlInt32"></see>.</returns>
  451.             <param name="i">The zero-based column ordinal. </param>
  452.         </member>
  453.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlInt64(System.Int32)">
  454.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</summary>
  455.             <returns>A <see cref="T:System.Data.SqlTypes.SqlInt64"></see>.</returns>
  456.             <param name="i">The zero-based column ordinal. </param>
  457.         </member>
  458.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlMoney(System.Int32)">
  459.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</summary>
  460.             <returns>A <see cref="T:System.Data.SqlTypes.SqlMoney"></see>.</returns>
  461.             <param name="i">The zero-based column ordinal. </param>
  462.         </member>
  463.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlSingle(System.Int32)">
  464.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</summary>
  465.             <returns>A <see cref="T:System.Data.SqlTypes.SqlSingle"></see>.</returns>
  466.             <param name="i">The zero-based column ordinal. </param>
  467.         </member>
  468.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlString(System.Int32)">
  469.             <summary>Gets the value of the specified column as a <see cref="T:System.Data.SqlTypes.SqlString"></see>.</summary>
  470.             <returns>A <see cref="T:System.Data.SqlTypes.SqlString"></see>.</returns>
  471.             <param name="i">The zero-based column ordinal. </param>
  472.         </member>
  473.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlValue(System.Int32)">
  474.             <summary>Gets an <see cref="T:System.Object"></see> that is a representation of the underlying <see cref="T:System.Data.SqlDbType"></see> Variant.</summary>
  475.             <returns>An <see cref="T:System.Object"></see> that is a representation of the underlying <see cref="T:System.Data.SqlDbType"></see> variant.</returns>
  476.             <param name="i">The zero-based column ordinal. </param>
  477.         </member>
  478.         <member name="M:System.Data.SqlClient.SqlDataReader.GetSqlValues(System.Object[])">
  479.             <summary>Gets all the attribute columns in the current row.</summary>
  480.             <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
  481.             <param name="values">An array of <see cref="T:System.Object"></see> to copy the attribute columns into. </param>
  482.         </member>
  483.         <member name="M:System.Data.SqlClient.SqlDataReader.GetString(System.Int32)">
  484.             <summary>Gets the value of the specified column as a string.</summary>
  485.             <returns>The value of the specified column.</returns>
  486.             <param name="i">The zero-based column ordinal. </param>
  487.             <exception cref="T:System.InvalidCastException">The specified cast is not valid. </exception>
  488.         </member>
  489.         <member name="M:System.Data.SqlClient.SqlDataReader.GetValue(System.Int32)">
  490.             <summary>Gets the value of the specified column in its native format.</summary>
  491.             <returns>This method returns <see cref="T:System.DBNull"></see> for null database columns.</returns>
  492.             <param name="i">The zero-based column ordinal. </param>
  493.         </member>
  494.         <member name="M:System.Data.SqlClient.SqlDataReader.GetValues(System.Object[])">
  495.             <summary>Gets all attribute columns in the collection for the current row.</summary>
  496.             <returns>The number of instances of <see cref="T:System.Object"></see> in the array.</returns>
  497.             <param name="values">An array of <see cref="T:System.Object"></see> into which to copy the attribute columns. </param>
  498.         </member>
  499.         <member name="M:System.Data.SqlClient.SqlDataReader.IsDBNull(System.Int32)">
  500.             <summary>Gets a value that indicates whether the column contains non-existent or missing values.</summary>
  501.             <returns>true if the specified column value is equivalent to <see cref="T:System.DBNull"></see>; otherwise false.</returns>
  502.             <param name="i">The zero-based column ordinal. </param>
  503.         </member>
  504.         <member name="M:System.Data.SqlClient.SqlDataReader.NextResult">
  505.             <summary>Advances the data reader to the next result, when reading the results of batch Transact-SQL statements.</summary>
  506.             <returns>true if there are more result sets; otherwise false.</returns>
  507.         </member>
  508.         <member name="M:System.Data.SqlClient.SqlDataReader.Read">
  509.             <summary>Advances the <see cref="T:System.Data.SqlClient.SqlDataReader"></see> to the next record.</summary>
  510.             <returns>true if there are more rows; otherwise false.</returns>
  511.         </member>
  512.         <member name="P:System.Data.SqlClient.SqlDataReader.Depth">
  513.             <summary>Gets a value that indicates the depth of nesting for the current row.</summary>
  514.             <returns>The depth of nesting for the current row.</returns>
  515.         </member>
  516.         <member name="P:System.Data.SqlClient.SqlDataReader.FieldCount">
  517.             <summary>Gets the number of columns in the current row.</summary>
  518.             <returns>When not positioned in a valid recordset, 0; otherwise the number of columns in the current row. The default is -1.</returns>
  519.             <exception cref="T:System.NotSupportedException">There is no current connection to an instance of SQL Server. </exception>
  520.         </member>
  521.         <member name="P:System.Data.SqlClient.SqlDataReader.IsClosed">
  522.             <summary>Retrieves a Boolean value that indicates whether the specified <see cref="T:System.Data.SqlClient.SqlDataReader"></see> instance has been closed. </summary>
  523.             <returns>true if the specified <see cref="T:System.Data.SqlClient.SqlDataReader"></see> instance is closed; otherwise false. </returns>
  524.         </member>
  525.         <member name="P:System.Data.SqlClient.SqlDataReader.Item(System.Int32)">
  526.             <summary>Gets the value of the specified column in its native format given the column ordinal.</summary>
  527.             <returns>The value of the specified column in its native format.</returns>
  528.             <param name="i">The zero-based column ordinal. </param>
  529.             <exception cref="T:System.IndexOutOfRangeException">The index passed was outside the range of 0 through <see cref="P:System.Data.IDataRecord.FieldCount"></see>. </exception>
  530.         </member>
  531.         <member name="P:System.Data.SqlClient.SqlDataReader.Item(System.String)">
  532.             <summary>Gets the value of the specified column in its native format given the column name.</summary>
  533.             <returns>The value of the specified column in its native format.</returns>
  534.             <param name="name">The column name. </param>
  535.             <exception cref="T:System.IndexOutOfRangeException">No column with the specified name was found. </exception>
  536.         </member>
  537.         <member name="P:System.Data.SqlClient.SqlDataReader.RecordsAffected">
  538.             <summary>Gets the number of rows changed, inserted, or deleted by execution of the Transact-SQL statement.</summary>
  539.             <returns>The number of rows changed, inserted, or deleted; 0 if no rows were affected or the statement failed; and -1 for SELECT statements.</returns>
  540.         </member>
  541.         <member name="T:System.Data.SqlClient.SqlError">
  542.             <summary>Collects information relevant to a warning or error returned by SQL Server.</summary>
  543.         </member>
  544.         <member name="M:System.Data.SqlClient.SqlError.ToString">
  545.             <summary>Gets the complete text of the error message.</summary>
  546.             <returns>The complete text of the error.</returns>
  547.         </member>
  548.         <member name="P:System.Data.SqlClient.SqlError.Class">
  549.             <summary>Gets the severity level of the error returned from SQL Server.</summary>
  550.             <returns>A value from 1 to 25 that indicates the severity level of the error. The default is 0.</returns>
  551.         </member>
  552.         <member name="P:System.Data.SqlClient.SqlError.LineNumber">
  553.             <summary>Gets the line number within the Transact-SQL command batch or stored procedure that contains the error.</summary>
  554.             <returns>The line number within the Transact-SQL command batch or stored procedure that contains the error.</returns>
  555.         </member>
  556.         <member name="P:System.Data.SqlClient.SqlError.Message">
  557.             <summary>Gets the text describing the error.</summary>
  558.             <returns>The text describing the error.</returns>
  559.         </member>
  560.         <member name="P:System.Data.SqlClient.SqlError.Number">
  561.             <summary>Gets a number that identifies the type of error.</summary>
  562.             <returns>The number that identifies the type of error.</returns>
  563.         </member>
  564.         <member name="P:System.Data.SqlClient.SqlError.Procedure">
  565.             <summary>Gets the name of the stored procedure or remote procedure call (RPC) that generated the error.</summary>
  566.             <returns>The name of the stored procedure or RPC.</returns>
  567.         </member>
  568.         <member name="P:System.Data.SqlClient.SqlError.Server">
  569.             <summary>Gets the name of the instance of SQL Server that generated the error.</summary>
  570.             <returns>The name of the instance of SQL Server.</returns>
  571.         </member>
  572.         <member name="P:System.Data.SqlClient.SqlError.Source">
  573.             <summary>Gets the name of the provider that generated the error.</summary>
  574.             <returns>The name of the provider that generated the error.</returns>
  575.         </member>
  576.         <member name="P:System.Data.SqlClient.SqlError.State">
  577.             <summary>Gets a numeric error code from SQL Server that represents an error, warning or "no data found" message.</summary>
  578.             <returns>The number that represents the error code.</returns>
  579.         </member>
  580.         <member name="T:System.Data.SqlClient.SqlErrorCollection">
  581.             <summary>Collects all errors generated by the .NET Framework Data Provider for SQL Server. This class cannot be inherited.</summary>
  582.         </member>
  583.         <member name="M:System.Data.SqlClient.SqlErrorCollection.CopyTo(System.Array,System.Int32)">
  584.             <summary>Copies the elements of the <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see> collection into an <see cref="T:System.Array"></see>, starting at the specified index.</summary>
  585.             <param name="array">The <see cref="T:System.Array"></see> to copy elements into. </param>
  586.             <param name="index">The index from which to start copying into the array parameter. </param>
  587.             <exception cref="T:System.ArgumentNullException">The array is null. </exception>
  588.             <exception cref="T:System.ArgumentOutOfRangeException">The index is not valid for array. </exception>
  589.             <exception cref="T:System.ArgumentException">The sum of index and the number of elements in the <see cref="T:System.Data.SqlClient.SqlErrorCollection"></see> collection is greater than the <see cref="P:System.Array.Length"></see> of the <see cref="T:System.Array"></see>. </exception>
  590.         </member>
  591.         <member name="M:System.Data.SqlClient.SqlErrorCollection.GetEnumerator">
  592.             <summary>This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
  593.             <returns>An <see cref="T:System.Collections.IEnumerator"></see> .</returns>
  594.         </member>
  595.         <member name="P:System.Data.SqlClient.SqlErrorCollection.Count">
  596.             <summary>Gets the number of errors in the collection.</summary>
  597.             <returns>The total number of errors in the collection.</returns>
  598.         </member>
  599.         <member name="P:System.Data.SqlClient.SqlErrorCollection.Item(System.Int32)">
  600.             <summary>Gets the error at the specified index.</summary>
  601.             <returns>A <see cref="T:System.Data.SqlClient.SqlError"></see> that contains the error at the specified index.</returns>
  602.             <param name="index">The zero-based index of the error to retrieve. </param>
  603.             <exception cref="T:System.IndexOutOfRangeException">Index parameter is outside array bounds. </exception>
  604.         </member>
  605.         <member name="P:System.Data.SqlClient.SqlErrorCollection.System.Collections.ICollection.IsSynchronized">
  606.             <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.IsSynchronized"></see>.</summary>
  607.         </member>
  608.         <member name="P:System.Data.SqlClient.SqlErrorCollection.System.Collections.ICollection.SyncRoot">
  609.             <summary>For a description of this member, see <see cref="P:System.Collections.ICollection.SyncRoot"></see>.</summary>
  610.         </member>
  611.         <member name="T:System.Data.SqlClient.SqlException">
  612.             <summary>The exception that is thrown when SQL Server returns a warning or error. This class cannot be inherited.</summary>
  613.         </member>
  614.         <member name="P:System.Data.SqlClient.SqlException.Class">
  615.             <summary>Gets the severity level of the error returned from the .NET Framework Data Provider for SQL Server.</summary>
  616.             <returns>A value from 1 to 25 that indicates the severity level of the error.</returns>
  617.         </member>
  618.         <member name="P:System.Data.SqlClient.SqlException.Errors">
  619.             <summary>Gets a collection of one or more <see cref="T:System.Data.SqlClient.SqlError"></see> objects that give detailed information about exceptions generated by the .NET Framework Data Provider for SQL Server.</summary>
  620.             <returns>The collected instances of the <see cref="T:System.Data.SqlClient.SqlError"></see> class.</returns>
  621.         </member>
  622.         <member name="P:System.Data.SqlClient.SqlException.LineNumber">
  623.             <summary>Gets the line number within the Transact-SQL command batch or stored procedure that generated the error.</summary>
  624.             <returns>The line number within the Transact-SQL command batch or stored procedure that generated the error.</returns>
  625.         </member>
  626.         <member name="P:System.Data.SqlClient.SqlException.Number">
  627.             <summary>Gets a number that identifies the type of error.</summary>
  628.             <returns>The number that identifies the type of error.</returns>
  629.         </member>
  630.         <member name="P:System.Data.SqlClient.SqlException.Procedure">
  631.             <summary>Gets the name of the stored procedure or remote procedure call (RPC) that generated the error.</summary>
  632.             <returns>The name of the stored procedure or RPC.</returns>
  633.         </member>
  634.         <member name="P:System.Data.SqlClient.SqlException.Server">
  635.             <summary>Gets the name of the computer that is running an instance of SQL Server that generated the error.</summary>
  636.             <returns>The name of the computer running an instance of SQL Server.</returns>
  637.         </member>
  638.         <member name="P:System.Data.SqlClient.SqlException.Source">
  639.             <summary>Gets the name of the provider that generated the error.</summary>
  640.             <returns>The name of the provider that generated the error.</returns>
  641.         </member>
  642.         <member name="P:System.Data.SqlClient.SqlException.State">
  643.             <summary>Gets a numeric error code from SQL Server that represents an error, warning or "no data found" message. For more information about how to decode these values, see SQL Server Books Online.</summary>
  644.             <returns>The number representing the error code.</returns>
  645.         </member>
  646.         <member name="T:System.Data.SqlClient.SqlInfoMessageEventArgs">
  647.             <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</summary>
  648.         </member>
  649.         <member name="M:System.Data.SqlClient.SqlInfoMessageEventArgs.ToString">
  650.             <summary>Retrieves a string representation of the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</summary>
  651.             <returns>A string representing the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event.</returns>
  652.         </member>
  653.         <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Errors">
  654.             <summary>Gets the collection of warnings sent from the server.</summary>
  655.             <returns>The collection of warnings sent from the server.</returns>
  656.         </member>
  657.         <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Message">
  658.             <summary>Gets the full text of the error sent from the database.</summary>
  659.             <returns>The full text of the error.</returns>
  660.         </member>
  661.         <member name="P:System.Data.SqlClient.SqlInfoMessageEventArgs.Source">
  662.             <summary>Gets the name of the object that generated the error.</summary>
  663.             <returns>The name of the object that generated the error.</returns>
  664.         </member>
  665.         <member name="T:System.Data.SqlClient.SqlInfoMessageEventHandler">
  666.             <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlConnection.InfoMessage"></see> event of a <see cref="T:System.Data.SqlClient.SqlConnection"></see>.</summary>
  667.         </member>
  668.         <member name="T:System.Data.SqlClient.SqlParameter">
  669.             <summary>Represents a parameter to a <see cref="T:System.Data.SqlClient.SqlCommand"></see> and optionally its mapping to <see cref="T:System.Data.DataSet"></see> columns. This class cannot be inherited.</summary>
  670.         </member>
  671.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor">
  672.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class.</summary>
  673.         </member>
  674.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Object)">
  675.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name and a value of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
  676.             <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>. </param>
  677.             <param name="parameterName">The name of the parameter to map. </param>
  678.         </member>
  679.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType)">
  680.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name and the data type.</summary>
  681.             <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  682.             <param name="parameterName">The name of the parameter to map. </param>
  683.             <exception cref="T:System.ArgumentException">The value supplied in the dbType parameter is an invalid back-end data type. </exception>
  684.         </member>
  685.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32)">
  686.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType"></see>, and the size.</summary>
  687.             <param name="size">The length of the parameter. </param>
  688.             <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  689.             <param name="parameterName">The name of the parameter to map. </param>
  690.             <exception cref="T:System.ArgumentException">The value supplied in the dbType parameter is an invalid back-end data type. </exception>
  691.         </member>
  692.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.String)">
  693.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the <see cref="T:System.Data.SqlDbType"></see>, the size, and the source column name.</summary>
  694.             <param name="size">The length of the parameter. </param>
  695.             <param name="sourceColumn">The name of the source column. </param>
  696.             <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  697.             <param name="parameterName">The name of the parameter to map. </param>
  698.             <exception cref="T:System.ArgumentException">The value supplied in the dbType parameter is an invalid back-end data type. </exception>
  699.         </member>
  700.         <member name="M:System.Data.SqlClient.SqlParameter.#ctor(System.String,System.Data.SqlDbType,System.Int32,System.Data.ParameterDirection,System.Boolean,System.Byte,System.Byte,System.String,System.Data.DataRowVersion,System.Object)">
  701.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> class that uses the parameter name, the type of the parameter, the size of the parameter, a <see cref="T:System.Data.ParameterDirection"></see>, the precision of the parameter, the scale of the parameter, the source column, a <see cref="T:System.Data.DataRowVersion"></see> to use, and the value of the parameter.</summary>
  702.             <param name="size">The length of the parameter. </param>
  703.             <param name="sourceVersion">One of the <see cref="T:System.Data.DataRowVersion"></see> values. </param>
  704.             <param name="isNullable">true if the value of the field can be null; otherwise false. </param>
  705.             <param name="scale">The total number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved. </param>
  706.             <param name="precision">The total number of digits to the left and right of the decimal point to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved. </param>
  707.             <param name="dbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  708.             <param name="sourceColumn">The name of the source column. </param>
  709.             <param name="value">An <see cref="T:System.Object"></see> that is the value of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>. </param>
  710.             <param name="direction">One of the <see cref="T:System.Data.ParameterDirection"></see> values. </param>
  711.             <param name="parameterName">The name of the parameter to map. </param>
  712.             <exception cref="T:System.ArgumentException">The value supplied in the dbType parameter is an invalid back-end data type. </exception>
  713.         </member>
  714.         <member name="M:System.Data.SqlClient.SqlParameter.System.ICloneable.Clone">
  715.             <summary>For a description of this member, see <see cref="M:System.ICloneable.Clone"></see>.</summary>
  716.         </member>
  717.         <member name="M:System.Data.SqlClient.SqlParameter.ToString">
  718.             <summary>Gets a string that contains the <see cref="P:System.Data.SqlClient.SqlParameter.ParameterName"></see>.</summary>
  719.             <returns>A string that contains the <see cref="P:System.Data.SqlClient.SqlParameter.ParameterName"></see>.</returns>
  720.         </member>
  721.         <member name="P:System.Data.SqlClient.SqlParameter.DbType">
  722.             <summary>Gets or sets the <see cref="T:System.Data.SqlDbType"></see> of the parameter.</summary>
  723.             <returns>One of the <see cref="T:System.Data.SqlDbType"></see> values. The default is NVarChar.</returns>
  724.         </member>
  725.         <member name="P:System.Data.SqlClient.SqlParameter.Direction">
  726.             <summary>Gets or sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter.</summary>
  727.             <returns>One of the <see cref="T:System.Data.ParameterDirection"></see> values. The default is Input.</returns>
  728.             <exception cref="T:System.ArgumentException">The property was not set to one of the valid <see cref="T:System.Data.ParameterDirection"></see> values.</exception>
  729.         </member>
  730.         <member name="P:System.Data.SqlClient.SqlParameter.IsNullable">
  731.             <summary>Gets or sets a value that indicates whether the parameter accepts null values.</summary>
  732.             <returns>true if null values are accepted; otherwise false. The default is false.</returns>
  733.         </member>
  734.         <member name="P:System.Data.SqlClient.SqlParameter.Offset">
  735.             <summary>Gets or sets the offset to the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> property.</summary>
  736.             <returns>The offset to the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see>. The default is 0.</returns>
  737.         </member>
  738.         <member name="P:System.Data.SqlClient.SqlParameter.ParameterName">
  739.             <summary>Gets or sets the name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>.</summary>
  740.             <returns>The name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see>. The default is an empty string.</returns>
  741.         </member>
  742.         <member name="P:System.Data.SqlClient.SqlParameter.Precision">
  743.             <summary>Gets or sets the maximum number of digits used to represent the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> property.</summary>
  744.             <returns>The maximum number of digits used to represent the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> property. The default value is 0. This indicates that the data provider sets the precision for <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see>.</returns>
  745.         </member>
  746.         <member name="P:System.Data.SqlClient.SqlParameter.Scale">
  747.             <summary>Gets or sets the number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved.</summary>
  748.             <returns>The number of decimal places to which <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> is resolved. The default is 0.</returns>
  749.         </member>
  750.         <member name="P:System.Data.SqlClient.SqlParameter.Size">
  751.             <summary>Gets or sets the maximum size, in bytes, of the data within the column.</summary>
  752.             <returns>The maximum size, in bytes, of the data within the column. The default value is inferred from the parameter value.</returns>
  753.         </member>
  754.         <member name="P:System.Data.SqlClient.SqlParameter.SourceColumn">
  755.             <summary>Gets or sets the name of the source column mapped to the <see cref="T:System.Data.DataSet"></see> and used for loading or returning the <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see></summary>
  756.             <returns>The name of the source column mapped to the <see cref="T:System.Data.DataSet"></see>. The default is an empty string.</returns>
  757.         </member>
  758.         <member name="P:System.Data.SqlClient.SqlParameter.SourceVersion">
  759.             <summary>Gets or sets the <see cref="T:System.Data.DataRowVersion"></see> to use when you load <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see></summary>
  760.             <returns>One of the <see cref="T:System.Data.DataRowVersion"></see> values. The default is Current.</returns>
  761.         </member>
  762.         <member name="P:System.Data.SqlClient.SqlParameter.SqlDbType">
  763.             <summary>Gets or sets the <see cref="T:System.Data.SqlDbType"></see> of the parameter.</summary>
  764.             <returns>One of the <see cref="T:System.Data.SqlDbType"></see> values. The default is NVarChar.</returns>
  765.         </member>
  766.         <member name="P:System.Data.SqlClient.SqlParameter.Value">
  767.             <summary>Gets or sets the value of the parameter.</summary>
  768.             <returns>An <see cref="T:System.Object"></see> that is the value of the parameter. The default value is null.</returns>
  769.         </member>
  770.         <member name="T:System.Data.SqlClient.SqlParameterCollection">
  771.             <summary>Represents a collection of parameters associated with a <see cref="T:System.Data.SqlClient.SqlCommand"></see> and their respective mappings to columns in a <see cref="T:System.Data.DataSet"></see>. This class cannot be inherited.</summary>
  772.         </member>
  773.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.Object)">
  774.             <summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  775.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  776.             <param name="value">An <see cref="T:System.Object"></see>.</param>
  777.         </member>
  778.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.Data.SqlClient.SqlParameter)">
  779.             <summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  780.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  781.             <param name="value">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> to add to the collection. </param>
  782.             <exception cref="T:System.InvalidCastException">The parameter passed was not a <see cref="T:System.Data.SqlClient.SqlParameter"></see>. </exception>
  783.             <exception cref="T:System.ArgumentNullException">The value parameter is null. </exception>
  784.             <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> specified in the value parameter is already added to this or another <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. </exception>
  785.         </member>
  786.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Object)">
  787.             <summary>Adds the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  788.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.Use caution when you are using this overload of the <see cref="M:System.Data.SqlClient.SqlParameterCollection.Add"></see> method to specify integer parameter values. Because this overload takes a value of type <see cref="T:System.Object"></see>, you must convert the integral value to an <see cref="T:System.Object"></see> type when the value is zero, as the following C# example demonstrates.parameters.Add("@pname", Convert.ToInt32(0));If you do not perform this conversion, the compiler assumes that you are trying to call the SqlParameterCollection.Add (string, SqlDbType) overload.</returns>
  789.             <param name="value">A <see cref="T:System.Object"></see>.</param>
  790.             <param name="parameterName">The name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to add to the collection.</param>
  791.             <exception cref="T:System.ArgumentNullException">The value parameter is null. </exception>
  792.             <exception cref="T:System.ArgumentException">The <see cref="T:System.Data.SqlClient.SqlParameter"></see> specified in the value parameter is already added to this or another <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. </exception>
  793.         </member>
  794.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType)">
  795.             <summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter"></see> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> given the parameter name and the data type.</summary>
  796.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  797.             <param name="parameterName">The name of the parameter. </param>
  798.             <param name="sqlDbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  799.         </member>
  800.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32)">
  801.             <summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter"></see> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>, given the specified parameter name and value.</summary>
  802.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  803.             <param name="size">The size as an <see cref="T:System.Int32"></see>.</param>
  804.             <param name="parameterName">The name of the parameter. </param>
  805.             <param name="sqlDbType">The <see cref="P:System.Data.SqlClient.SqlParameter.Value"></see> of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to add to the collection. </param>
  806.             <exception cref="T:System.InvalidCastException">The value parameter is not an <see cref="T:System.Data.SqlClient.SqlParameter"></see>. </exception>
  807.         </member>
  808.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Add(System.String,System.Data.SqlDbType,System.Int32,System.String)">
  809.             <summary>Adds a <see cref="T:System.Data.SqlClient.SqlParameter"></see> to the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> with the parameter name, the data type, and the column length.</summary>
  810.             <returns>The index of the new <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  811.             <param name="size">The column length.</param>
  812.             <param name="sourceColumn">The name of the source column.</param>
  813.             <param name="parameterName">The name of the parameter. </param>
  814.             <param name="sqlDbType">One of the <see cref="T:System.Data.SqlDbType"></see> values. </param>
  815.         </member>
  816.         <member name="M:System.Data.SqlClient.SqlParameterCollection.AddWithValue(System.String,System.Object)">
  817.             <summary>Adds a value to the end of the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  818.             <returns>A <see cref="T:System.Data.SqlClient.SqlParameter"></see> object.</returns>
  819.             <param name="value">The value to be added.</param>
  820.             <param name="parameterName">The name of the parameter.</param>
  821.         </member>
  822.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Clear">
  823.             <summary>Removes all the <see cref="T:System.Data.SqlClient.SqlParameter"></see> objects from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  824.         </member>
  825.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.Object)">
  826.             <summary>Determines whether the specified <see cref="T:System.Object"></see> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  827.             <returns>true if the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> contains the value; otherwise false.</returns>
  828.             <param name="value">The <see cref="T:System.Object"></see> value.</param>
  829.         </member>
  830.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Contains(System.String)">
  831.             <summary>Determines whether the specified <see cref="T:System.String"></see> is in this <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</summary>
  832.             <returns>true if the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> contains the value; otherwise false.</returns>
  833.             <param name="value">The <see cref="T:System.String"></see> value.</param>
  834.         </member>
  835.         <member name="M:System.Data.SqlClient.SqlParameterCollection.CopyTo(System.Array,System.Int32)">
  836.             <summary>Copies all the elements of the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> to the specified one-dimensional <see cref="T:System.Array"></see> starting at the specified destination <see cref="T:System.Array"></see> index.</summary>
  837.             <param name="array">The one-dimensional <see cref="T:System.Array"></see> that is the destination of the elements copied from the current <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
  838.             <param name="index">A 32-bit integer that represents the index in the <see cref="T:System.Array"></see> at which copying starts.</param>
  839.         </member>
  840.         <member name="M:System.Data.SqlClient.SqlParameterCollection.GetEnumerator">
  841.             <summary>Returns an enumerator that iterates through the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. </summary>
  842.             <returns>An <see cref="T:System.Collections.IEnumerator"></see> for the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. </returns>
  843.         </member>
  844.         <member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.Object)">
  845.             <summary>Gets the location of the specified <see cref="T:System.Object"></see> within the collection.</summary>
  846.             <returns>The zero-based location of the specified <see cref="T:System.Object"></see> that is a <see cref="T:System.Data.SqlClient.SqlParameter"></see> within the collection. Returns -1 when the object does not exist in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
  847.             <param name="value">The <see cref="T:System.Object"></see> to find. </param>
  848.         </member>
  849.         <member name="M:System.Data.SqlClient.SqlParameterCollection.IndexOf(System.String)">
  850.             <summary>Gets the location of the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified name.</summary>
  851.             <returns>The zero-based location of the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified case-sensitive name. Returns -1 when the object does not exist in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</returns>
  852.             <param name="parameterName">The case-sensitive name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to find.</param>
  853.         </member>
  854.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Insert(System.Int32,System.Object)">
  855.             <summary>Inserts an <see cref="T:System.Object"></see> into the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified index.</summary>
  856.             <param name="value">An <see cref="T:System.Object"></see> to be inserted in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>.</param>
  857.             <param name="index">The zero-based index at which value should be inserted.</param>
  858.         </member>
  859.         <member name="M:System.Data.SqlClient.SqlParameterCollection.Remove(System.Object)">
  860.             <summary>Removes the specified <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the collection.</summary>
  861.             <param name="value">A <see cref="T:System.Object"></see> object to remove from the collection. </param>
  862.         </member>
  863.         <member name="M:System.Data.SqlClient.SqlParameterCollection.RemoveAt(System.Int32)">
  864.             <summary>Removes the <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified index.</summary>
  865.             <param name="index">The zero-based index of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> object to remove.</param>
  866.         </member>
  867.         <member name="M:System.Data.SqlClient.SqlParameterCollection.RemoveAt(System.String)">
  868.             <summary>Removes the <see cref="T:System.Data.SqlClient.SqlParameter"></see> from the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> at the specified parameter name.</summary>
  869.             <param name="parameterName">The name of the <see cref="T:System.Data.SqlClient.SqlParameter"></see> to remove.</param>
  870.         </member>
  871.         <member name="P:System.Data.SqlClient.SqlParameterCollection.Count">
  872.             <summary>Returns an Integer that contains the number of elements in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see>. Read-only. </summary>
  873.             <returns>The number of elements in the <see cref="T:System.Data.SqlClient.SqlParameterCollection"></see> as an Integer.</returns>
  874.         </member>
  875.         <member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.Int32)">
  876.             <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter"></see> at the specified index.</summary>
  877.             <returns>The <see cref="T:System.Data.SqlClient.SqlParameter"></see> at the specified index.</returns>
  878.             <param name="index">The zero-based index of the parameter to retrieve. </param>
  879.             <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist. </exception>
  880.         </member>
  881.         <member name="P:System.Data.SqlClient.SqlParameterCollection.Item(System.String)">
  882.             <summary>Gets the <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified name.</summary>
  883.             <returns>The <see cref="T:System.Data.SqlClient.SqlParameter"></see> with the specified name.</returns>
  884.             <param name="parameterName">The name of the parameter to retrieve. </param>
  885.             <exception cref="T:System.IndexOutOfRangeException">The specified name does not exist. </exception>
  886.         </member>
  887.         <member name="T:System.Data.SqlClient.SqlRowUpdatedEventArgs">
  888.             <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated"></see> event.</summary>
  889.         </member>
  890.         <member name="M:System.Data.SqlClient.SqlRowUpdatedEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
  891.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlRowUpdatedEventArgs"></see> class.</summary>
  892.             <param name="statementType">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query executed. </param>
  893.             <param name="row">The <see cref="T:System.Data.DataRow"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
  894.             <param name="command">The <see cref="T:System.Data.IDbCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called. </param>
  895.             <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
  896.         </member>
  897.         <member name="P:System.Data.SqlClient.SqlRowUpdatedEventArgs.Command">
  898.             <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</summary>
  899.             <returns>The <see cref="T:System.Data.SqlClient.SqlCommand"></see> executed when <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see> is called.</returns>
  900.         </member>
  901.         <member name="T:System.Data.SqlClient.SqlRowUpdatedEventHandler">
  902.             <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdated"></see> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</summary>
  903.         </member>
  904.         <member name="T:System.Data.SqlClient.SqlRowUpdatingEventArgs">
  905.             <summary>Provides data for the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating"></see> event.</summary>
  906.         </member>
  907.         <member name="M:System.Data.SqlClient.SqlRowUpdatingEventArgs.#ctor(System.Data.DataRow,System.Data.IDbCommand,System.Data.StatementType,System.Data.Common.DataTableMapping)">
  908.             <summary>Initializes a new instance of the <see cref="T:System.Data.SqlClient.SqlRowUpdatingEventArgs"></see> class.</summary>
  909.             <param name="statementType">One of the <see cref="T:System.Data.StatementType"></see> values that specifies the type of query executed. </param>
  910.             <param name="row">The <see cref="T:System.Data.DataRow"></see> to <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
  911.             <param name="command">The <see cref="T:System.Data.IDbCommand"></see> to execute during <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
  912.             <param name="tableMapping">The <see cref="T:System.Data.Common.DataTableMapping"></see> sent through an <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>. </param>
  913.         </member>
  914.         <member name="P:System.Data.SqlClient.SqlRowUpdatingEventArgs.Command">
  915.             <summary>Gets or sets the <see cref="T:System.Data.SqlClient.SqlCommand"></see> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</summary>
  916.             <returns>The <see cref="T:System.Data.SqlClient.SqlCommand"></see> to execute when performing the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"></see>.</returns>
  917.         </member>
  918.         <member name="T:System.Data.SqlClient.SqlRowUpdatingEventHandler">
  919.             <summary>Represents the method that will handle the <see cref="E:System.Data.SqlClient.SqlDataAdapter.RowUpdating"></see> event of a <see cref="T:System.Data.SqlClient.SqlDataAdapter"></see>.</summary>
  920.         </member>
  921.         <member name="T:System.Data.SqlClient.SqlTransaction">
  922.             <summary>Represents a Transact-SQL transaction to be made in a SQL Server database. This class cannot be inherited.</summary>
  923.         </member>
  924.         <member name="M:System.Data.SqlClient.SqlTransaction.Commit">
  925.             <summary>Commits the database transaction.</summary>
  926.             <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
  927.             <exception cref="T:System.Exception">An error occurred while trying to commit the transaction. </exception>
  928.         </member>
  929.         <member name="M:System.Data.SqlClient.SqlTransaction.Rollback">
  930.             <summary>Rolls back a transaction from a pending state.</summary>
  931.             <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
  932.             <exception cref="T:System.Exception">An error occurred while trying to commit the transaction. </exception>
  933.         </member>
  934.         <member name="M:System.Data.SqlClient.SqlTransaction.Rollback(System.String)">
  935.             <summary>Rolls back a transaction from a pending state, and specifies the transaction or savepoint name.</summary>
  936.             <param name="transactionName">The name of the transaction to roll back, or the savepoint to which to roll back. </param>
  937.             <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
  938.             <exception cref="T:System.ArgumentException">No transaction name was specified. </exception>
  939.         </member>
  940.         <member name="M:System.Data.SqlClient.SqlTransaction.Save(System.String)">
  941.             <summary>Creates a savepoint in the transaction that can be used to roll back a part of the transaction, and specifies the savepoint name.</summary>
  942.             <param name="savePointName">The name of the savepoint. </param>
  943.             <exception cref="T:System.InvalidOperationException">The transaction has already been committed or rolled back.-or- The connection is broken. </exception>
  944.             <exception cref="T:System.Exception">An error occurred while trying to commit the transaction. </exception>
  945.         </member>
  946.         <member name="P:System.Data.SqlClient.SqlTransaction.Connection">
  947.             <summary>Gets the <see cref="T:System.Data.SqlClient.SqlConnection"></see> object associated with the transaction, or null if the transaction is no longer valid.</summary>
  948.             <returns>The <see cref="T:System.Data.SqlClient.SqlConnection"></see> object associated with the transaction.</returns>
  949.         </member>
  950.         <member name="P:System.Data.SqlClient.SqlTransaction.IsolationLevel">
  951.             <summary>Specifies the <see cref="T:System.Data.IsolationLevel"></see> for this transaction.</summary>
  952.             <returns>The <see cref="T:System.Data.IsolationLevel"></see> for this transaction. The default is ReadCommitted.</returns>
  953.         </member>
  954.     </members>
  955. </doc>